From c4224bf9d0483ebc029e3567ba5e3c9a61e0eb28 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 5 Jun 2016 22:20:38 -0400 Subject: [PATCH] treeview: fix an off-by-one error gtk_tree_view_get_path_at_pos() mistakenly identifies the first pixel of all but the first column in a tree view as belonging to the previous column. https://bugzilla.gnome.org/show_bug.cgi?id=708148 --- gtk/gtktreeview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index 1ac81ca63c..e51aae45ae 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -13564,7 +13564,7 @@ gtk_tree_view_get_path_at_pos (GtkTreeView *tree_view, last_column = tmp_column; width = gtk_tree_view_column_get_width (tmp_column); - if (remaining_x <= width) + if (remaining_x < width) { found = TRUE; -- 2.30.2